home *** CD-ROM | disk | FTP | other *** search
/ World Tours: Brazil / WorldTours: Brazil.iso / mac / content / main.dir / 00048_Script_next pre < prev    next >
Text File  |  2007-04-22  |  573b  |  42 lines

  1. property pSelf,handle
  2.  
  3. on beginsprite
  4.   pSelf=sprite(the currentSpriteNum)
  5. end
  6.  
  7. on mouseenter
  8.   
  9.   --cursor 280
  10. end
  11.  
  12. on mouseleave
  13.   
  14.   --cursor -1
  15. end
  16.  
  17. on mousewithin me
  18.   
  19.   if the stilldown then
  20.     if the timeoutLapsed  >  60 then
  21.       do Handle & " 0.02"
  22.     end if    
  23.   end if
  24.   
  25. end
  26.  
  27.  
  28.  
  29. on mousedown
  30.   if handle<>void then 
  31.     do Handle & " 0.05"
  32.   end if  
  33. end
  34.  
  35. on getPropertyDescriptionList
  36.   description = [:] 
  37.   addProp description,#handle, [#default:"", #format:#string, #comment:"command"]
  38.   return description
  39. end
  40.  
  41.  
  42.